Skip to content

Resolve Dependabot security-update deadlock caused by transitive undici@5.x - #44

Merged
dcapslock merged 2 commits into
masterfrom
copilot/fix-dependabot-job-failure
Jun 5, 2026
Merged

Resolve Dependabot security-update deadlock caused by transitive undici@5.x#44
dcapslock merged 2 commits into
masterfrom
copilot/fix-dependabot-job-failure

Conversation

Copilot AI commented Jun 5, 2026

Copy link
Copy Markdown
Contributor

Dependabot was failing with security_update_not_possible because the lockfile still resolved a legacy @semantic-release/npm@13.1.1 path that pinned @actions/http-client@2.x and therefore undici@5.29.0 (below the minimum fixed line).

  • Root-cause correction

    • Added a Yarn resolution to force @semantic-release/npm onto ^13.1.5, eliminating the stale transitive branch that required @actions/core@1.x.
  • Dependency graph cleanup (lockfile)

    • Regenerated yarn.lock so the graph no longer includes:
      • @semantic-release/npm@13.1.1
      • @actions/http-client@2.2.3
      • undici@5.29.0
    • Resulting graph resolves undici only via 6.x paths.
  • Implementation snippet

    {
      "resolutions": {
        "@semantic-release/npm": "^13.1.5",
        "lodash": "^4.18.0"
      }
    }

@dcapslock
dcapslock marked this pull request as ready for review June 5, 2026 03:10
Copilot AI changed the title [WIP] Fix failing GitHub Actions job Dependabot Resolve Dependabot security-update deadlock caused by transitive undici@5.x Jun 5, 2026
Copilot AI requested a review from dcapslock June 5, 2026 03:11
@dcapslock
dcapslock merged commit 1f45a74 into master Jun 5, 2026
3 of 4 checks passed
@dcapslock
dcapslock deleted the copilot/fix-dependabot-job-failure branch June 5, 2026 03:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants